home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / program / 322 / patch / patch.c < prev    next >
C/C++ Source or Header  |  1988-10-20  |  20KB  |  839 lines

  1. char rcsid[] =
  2.     "$Header: patch.c,v 2.0.1.6 88/06/22 20:46:39 lwall Locked $";
  3.  
  4. /* patch - a program to apply diffs to original files
  5.  *
  6.  * Copyright 1986, Larry Wall
  7.  *
  8.  * This program may be copied as long as you don't try to make any
  9.  * money off of it, or pretend that you wrote it.
  10.  *
  11.  * $Log:    patch.c,v $
  12.  * Revision 2.0.1.6  88/06/22  20:46:39  lwall
  13.  * patch12: rindex() wasn't declared
  14.  * 
  15.  * Revision 2.0.1.5  88/06/03  15:09:37  lwall
  16.  * patch10: exit code improved.
  17.  * patch10: better support for non-flexfilenames.
  18.  * 
  19.  * Revision 2.0.1.4  87/02/16  14:00:04  lwall
  20.  * Short replacement caused spurious "Out of sync" message.
  21.  * 
  22.  * Revision 2.0.1.3  87/01/30  22:45:50  lwall
  23.  * Improved diagnostic on sync error.
  24.  * Moved do_ed_script() to pch.c.
  25.  * 
  26.  * Revision 2.0.1.2  86/11/21  09:39:15  lwall
  27.  * Fuzz factor caused offset of installed lines.
  28.  * 
  29.  * Revision 2.0.1.1  86/10/29  13:10:22  lwall
  30.  * Backwards search could terminate prematurely.
  31.  * 
  32.  * Revision 2.0  86/09/17  15:37:32  lwall
  33.  * Baseline for netwide release.
  34.  * 
  35.  * Revision 1.5  86/08/01  20:53:24  lwall
  36.  * Changed some %d's to %ld's.
  37.  * Linted.
  38.  * 
  39.  * Revision 1.4  86/08/01  19:17:29  lwall
  40.  * Fixes for machines that can't vararg.
  41.  * Added fuzz factor.
  42.  * Generalized -p.
  43.  * General cleanup.
  44.  * 
  45.  * 85/08/15 van%ucbmonet@berkeley
  46.  * Changes for 4.3bsd diff -c.
  47.  *
  48.  * Revision 1.3  85/03/26  15:07:43  lwall
  49.  * Frozen.
  50.  * 
  51.  * Revision 1.2.1.9  85/03/12  17:03:35  lwall
  52.  * Changed pfp->_file to fileno(pfp).
  53.  * 
  54.  * Revision 1.2.1.8  85/03/12  16:30:43  lwall
  55.  * Check i_ptr and i_womp to make sure they aren't null before freeing.
  56.  * Also allow ed output to be suppressed.
  57.  * 
  58.  * Revision 1.2.1.7  85/03/12  15:56:13  lwall
  59.  * Added -p option from jromine@uci-750a.
  60.  * 
  61.  * Revision 1.2.1.6  85/03/12  12:12:51  lwall
  62.  * Now checks for normalness of file to patch.
  63.  * 
  64.  * Revision 1.2.1.5  85/03/12  11:52:12  lwall
  65.  * Added -D (#ifdef) option from joe@fluke.
  66.  * 
  67.  * Revision 1.2.1.4  84/12/06  11:14:15  lwall
  68.  * Made smarter about SCCS subdirectories.
  69.  * 
  70.  * Revision 1.2.1.3  84/12/05  11:18:43  lwall
  71.  * Added -l switch to do loose string comparison.
  72.  * 
  73.  * Revision 1.2.1.2  84/12/04  09:47:13  lwall
  74.  * Failed hunk count not reset on multiple patch file.
  75.  * 
  76.  * Revision 1.2.1.1  84/12/04  09:42:37  lwall
  77.  * Branch for sdcrdcf changes.
  78.  * 
  79.  * Revision 1.2  84/11/29  13:29:51  lwall
  80.  * Linted.  Identifiers uniqified.  Fixed i_ptr malloc() bug.  Fixed
  81.  * multiple calls to mktemp().  Will now work on machines that can only
  82.  * read 32767 chars.  Added -R option for diffs with new and old swapped.
  83.  * Various cosmetic changes.
  84.  * 
  85.  * Revision 1.1  84/11/09  17:03:58  lwall
  86.  * Initial revision
  87.  * 
  88.  */
  89.  
  90. #include "INTERN.h"
  91. #include "common.h"
  92. #include "EXTERN.h"
  93. #include "version.h"
  94. #include "util.h"
  95. #include "pch.h"
  96. #include "inp.h"
  97.  
  98. /* procedures */
  99.  
  100. void reinitialize_almost_everything();
  101. void get_some_switches();
  102. LINENUM locate_hunk();
  103. void abort_hunk();
  104. void apply_hunk();
  105. void init_output();
  106. void init_reject();
  107. void copy_till();
  108. void spew_output();
  109. void dump_line();
  110. bool patch_match();
  111. bool similar();
  112. void re_input();
  113. void my_exit();
  114.  
  115. /* Apply a set of diffs as appropriate. */
  116.  
  117. main(argc,argv)
  118. int argc;
  119. char **argv;
  120. {
  121.     LINENUM where;
  122.     LINENUM newwhere;
  123.     LINENUM fuzz;
  124.     LINENUM mymaxfuzz;
  125.     int hunk = 0;
  126.     int failed = 0;
  127.     int failtotal = 0;
  128.     int i;
  129.  
  130.     setbuf(stderr, serrbuf);
  131.     for (i = 0; i<MAXFILEC; i++)
  132.     filearg[i] = Nullch;
  133.     Mktemp(TMPOUTNAME);
  134.     Mktemp(TMPINNAME);
  135.     Mktemp(TMPREJNAME);
  136.     Mktemp(TMPPATNAME);
  137.  
  138.     /* parse switches */
  139.     Argc = argc;
  140.     Argv = argv;
  141.     get_some_switches();
  142.     
  143.     /* make sure we clean up /tmp in case of disaster */
  144.     set_signals(0);
  145.  
  146.     for (
  147.     open_patch_file(filearg[1]);
  148.     there_is_another_patch();
  149.     reinitialize_almost_everything()
  150.     ) {                    /* for each patch in patch file */
  151.  
  152.     if (outname == Nullch)
  153.         outname = savestr(filearg[0]);
  154.     
  155.     /* initialize the patched file */
  156.     if (!skip_rest_of_patch)
  157.         init_output(TMPOUTNAME);
  158.     
  159.     /* for ed script just up and do it and exit */
  160.     if (diff_type == ED_DIFF) {
  161.         do_ed_script();
  162.         continue;
  163.     }
  164.     
  165.     /* initialize reject file */
  166.     init_reject(TMPREJNAME);
  167.     
  168.     /* find out where all the lines are */
  169.     if (!skip_rest_of_patch)
  170.         scan_input(filearg[0]);
  171.     
  172.     /* from here on, open no standard i/o files, because malloc */
  173.     /* might misfire and we can't catch it easily */
  174.     
  175.     /* apply each hunk of patch */
  176.     hunk = 0;
  177.     failed = 0;
  178.     out_of_mem = FALSE;
  179.     while (another_hunk()) {
  180.         hunk++;
  181.         fuzz = Nulline;
  182.         mymaxfuzz = pch_context();
  183.         if (maxfuzz < mymaxfuzz)
  184.         mymaxfuzz = maxfuzz;
  185.         if (!skip_rest_of_patch) {
  186.         do {
  187.             where = locate_hunk(fuzz);
  188.             if (hunk == 1 && where == Nulline && !force) {
  189.                         /* dwim for reversed patch? */
  190.             if (!pch_swap()) {
  191.                 if (fuzz == Nulline)
  192.                 say1(
  193. "Not enough memory to try swapped hunk!  Assuming unswapped.\n");
  194.                 continue;
  195.             }
  196.             reverse = !reverse;
  197.             where = locate_hunk(fuzz);  /* try again */
  198.             if (where == Nulline) {        /* didn't find it swapped */
  199.                 if (!pch_swap())         /* put it back to normal */
  200.                 fatal1("Lost hunk on alloc error!\n");
  201.                 reverse = !reverse;
  202.             }
  203.             else if (noreverse) {
  204.                 if (!pch_swap())         /* put it back to normal */
  205.                 fatal1("Lost hunk on alloc error!\n");
  206.                 reverse = !reverse;
  207.                 say1(
  208. "Ignoring previously applied (or reversed) patch.\n");
  209.                 skip_rest_of_patch = TRUE;
  210.             }
  211.             else {
  212.                 ask3(
  213. "%seversed (or previously applied) patch detected!  %s -R? [y] ",
  214.                 reverse ? "R" : "Unr",
  215.                 reverse ? "Assume" : "Ignore");
  216.                 if (*buf == 'n') {
  217.                 ask1("Apply anyway? [n] ");
  218.                 if (*buf != 'y')
  219.                     skip_rest_of_patch = TRUE;
  220.                 where = Nulline;
  221.                 reverse = !reverse;
  222.                 if (!pch_swap())  /* put it back to normal */
  223.                     fatal1("Lost hunk on alloc error!\n");
  224.                 }
  225.             }
  226.             }
  227.         } while (!skip_rest_of_patch && where == Nulline &&
  228.             ++fuzz <= mymaxfuzz);
  229.  
  230.         if (skip_rest_of_patch) {        /* just got decided */
  231.             Fclose(ofp);
  232.             ofp = Nullfp;
  233.         }
  234.         }
  235.  
  236.         newwhere = pch_newfirst() + last_offset;
  237.         if (skip_rest_of_patch) {
  238.         abort_hunk();
  239.         failed++;
  240.         if (verbose)
  241.             say3("Hunk #%d ignored at %ld.\n", hunk, newwhere);
  242.         }
  243.         else if (where == Nulline) {
  244.         abort_hunk();
  245.         failed++;
  246.         if (verbose)
  247.             say3("Hunk #%d failed at %ld.\n", hunk, newwhere);
  248.         }
  249.         else {
  250.         apply_hunk(where);
  251.         if (verbose) {
  252.             say3("Hunk #%d succeeded at %ld", hunk, newwhere);
  253.             if (fuzz)
  254.             say2(" with fuzz %ld", fuzz);
  255.             if (last_offset)
  256.             say3(" (offset %ld line%s)",
  257.                 last_offset, last_offset==1L?"":"s");
  258.             say1(".\n");
  259.         }
  260.         }
  261.     }
  262.  
  263.     if (out_of_mem && using_plan_a) {
  264.         Argc = Argc_last;
  265.         Argv = Argv_last;
  266.         say1("\n\nRan out of memory using Plan A--trying again...\n\n");
  267.         continue;
  268.     }
  269.     
  270.     assert(hunk);
  271.     
  272.     /* finish spewing out the new file */
  273.     if (!skip_rest_of_patch)
  274.         spew_output();
  275.     
  276.     /* and put the output where desired */
  277.     ignore_signals();
  278.     if (!skip_rest_of_patch) {
  279.         if (move_file(TMPOUTNAME, outname) < 0) {
  280.         toutkeep = TRUE;
  281.         chmod(TMPOUTNAME, filemode);
  282.         }
  283.         else
  284.         chmod(outname, filemode);
  285.     }
  286.     Fclose(rejfp);
  287.     rejfp = Nullfp;
  288.     if (failed) {
  289.         failtotal += failed;
  290.         if (!*rejname) {
  291.         Strcpy(rejname, outname);
  292. #ifndef FLEXFILENAMES
  293.         {
  294.             char *rindex();
  295.             char *s = rindex(rejname,'/');
  296.  
  297.             if (!s)
  298.             s = rejname;
  299.             if (strlen(s) > 13)
  300.             if (s[12] == '.')    /* try to preserve difference */
  301.                 s[12] = s[13];    /* between .h, .c, .y, etc. */
  302.             s[13] = '\0';
  303.         }
  304. #endif
  305. #ifdef atarist
  306.         {
  307.           int i = strlen(rejname);
  308.           
  309.           for ( ; i > 0 ; i--)
  310.               {
  311.             if (rejname[i] == '.')
  312.                 {
  313.                 rejname[i] = '\0';
  314.                 break;
  315.                 }
  316.             }
  317.         }
  318. #endif
  319.         Strcat(rejname, REJEXT);
  320.         }
  321.         if (skip_rest_of_patch) {
  322.         say4("%d out of %d hunks ignored--saving rejects to %s\n",
  323.             failed, hunk, rejname);
  324.         }
  325.         else {
  326.         say4("%d out of %d hunks failed--saving rejects to %s\n",
  327.             failed, hunk, rejname);
  328.         }
  329.         if (move_file(TMPREJNAME, rejname) < 0)
  330.         trejkeep = TRUE;
  331.     }
  332.     set_signals(1);
  333.     }
  334.     my_exit(failtotal);
  335. }
  336.  
  337. /* Prepare to find the next patch to do in the patch file. */
  338.  
  339. void
  340. reinitialize_almost_everything()
  341. {
  342.     re_patch();
  343.     re_input();
  344.  
  345.     input_lines = 0;
  346.     last_frozen_line = 0;
  347.  
  348.     filec = 0;
  349.     if (filearg[0] != Nullch && !out_of_mem) {
  350.     free(filearg[0]);
  351.     filearg[0] = Nullch;
  352.     }
  353.  
  354.     if (outname != Nullch) {
  355.     free(outname);
  356.     outname = Nullch;
  357.     }
  358.  
  359.     last_offset = 0;
  360.  
  361.     diff_type = 0;
  362.  
  363.     if (revision != Nullch) {
  364.     free(revision);
  365.     revision = Nullch;
  366.     }
  367.  
  368.     reverse = FALSE;
  369.     skip_rest_of_patch = FALSE;
  370.  
  371.     get_some_switches();
  372.  
  373.     if (filec >= 2)
  374.     fatal1("You may not change to a different patch file.\n");
  375. }
  376.  
  377. /* Process switches and filenames up to next '+' or end of list. */
  378.  
  379. void
  380. get_some_switches()
  381. {
  382.     Reg1 char *s;
  383.  
  384.     rejname[0] = '\0';
  385.     Argc_last = Argc;
  386.     Argv_last = Argv;
  387.     if (!Argc)
  388.     return;
  389.     for (Argc--,Argv++; Argc; Argc--,Argv++) {
  390.     s = Argv[0];
  391.     if (strEQ(s, "+")) {
  392.         return;            /* + will be skipped by for loop */
  393.     }
  394.     if (*s != '-' || !s[1]) {
  395.         if (filec == MAXFILEC)
  396.         fatal1("Too many file arguments.\n");
  397.         filearg[filec++] = savestr(s);
  398.     }
  399.     else {
  400.         switch (*++s) {
  401.         case 'b':
  402.         origext = savestr(Argv[1]);
  403.         Argc--,Argv++;
  404.         break;
  405.         case 'B':
  406.         origprae = savestr(Argv[1]);
  407.         Argc--,Argv++;
  408.         break;
  409.         case 'c':
  410.         diff_type = CONTEXT_DIFF;
  411.         break;
  412.         case 'd':
  413.         if (!*++s) {
  414.             Argc--,Argv++;
  415.             s = Argv[0];
  416.         }
  417.         if (chdir(s) < 0)
  418.             fatal2("Can't cd to %s.\n", s);
  419.         break;
  420.         case 'D':
  421.             do_defines = TRUE;
  422.         if (!*++s) {
  423.             Argc--,Argv++;
  424.             s = Argv[0];
  425.         }
  426.         if (!isalpha(*s))
  427.             fatal1("Argument to -D not an identifier.\n");
  428.         Sprintf(if_defined, "#ifdef %s\n", s);
  429.         Sprintf(not_defined, "#ifndef %s\n", s);
  430.         Sprintf(end_defined, "#endif /* %s */\n", s);
  431.         break;
  432.         case 'e':
  433.         diff_type = ED_DIFF;
  434.         break;
  435.         case 'f':
  436.         force = TRUE;
  437.         break;
  438.         case 'F':
  439.         if (*++s == '=')
  440.             s++;
  441.         maxfuzz = atoi(s);
  442.         break;
  443.         case 'l':
  444.         canonicalize = TRUE;
  445.         break;
  446.         case 'n':
  447.         diff_type = NORMAL_DIFF;
  448.         break;
  449.         case 'N':
  450.         noreverse = TRUE;
  451.         break;
  452.         case 'o':
  453.         outname = savestr(Argv[1]);
  454.         Argc--,Argv++;
  455.         break;
  456.         case 'p':
  457.         if (*++s == '=')
  458.             s++;
  459.         strippath = atoi(s);
  460.         break;
  461.         case 'r':
  462.         Strcpy(rejname, Argv[1]);
  463.         Argc--,Argv++;
  464.         break;
  465.         case 'R':
  466.         reverse = TRUE;
  467.         break;
  468.         case 's':
  469.         verbose = FALSE;
  470.         break;
  471.         case 'S':
  472.         skip_rest_of_patch = TRUE;
  473.         break;
  474.         case 'v':
  475.         version();
  476.         break;
  477. #ifdef DEBUGGING
  478.         case 'x':
  479.         debug = atoi(s+1);
  480.         break;
  481. #endif
  482.         default:
  483.         fatal2("Unrecognized switch: %s\n", Argv[0]);
  484.         }
  485.     }
  486.     }
  487. }
  488.  
  489. /* Attempt to find the right place to apply this hunk of patch. */
  490.  
  491. LINENUM
  492. locate_hunk(fuzz)
  493. LINENUM fuzz;
  494. {
  495.     Reg1 LINENUM first_guess = pch_first() + last_offset;
  496.     Reg2 LINENUM offset;
  497.     LINENUM pat_lines = pch_ptrn_lines();
  498.     Reg3 LINENUM max_pos_offset = input_lines - first_guess
  499.                 - pat_lines + 1; 
  500.     Reg4 LINENUM max_neg_offset = first_guess - last_frozen_line - 1
  501.                 + pch_context();
  502.  
  503.     if (!pat_lines)            /* null range matches always */
  504.     return first_guess;
  505.     if (max_neg_offset >= first_guess)    /* do not try lines < 0 */
  506.     max_neg_offset = first_guess - 1;
  507.     if (first_guess <= input_lines && patch_match(first_guess, Nulline, fuzz))
  508.     return first_guess;
  509.     for (offset = 1; ; offset++) {
  510.     Reg5 bool check_after = (offset <= max_pos_offset);
  511.     Reg6 bool check_before = (offset <= max_neg_offset);
  512.  
  513.     if (check_after && patch_match(first_guess, offset, fuzz)) {
  514. #ifdef DEBUGGING
  515.         if (debug & 1)
  516.         say3("Offset changing from %ld to %ld\n", last_offset, offset);
  517. #endif
  518.         last_offset = offset;
  519.         return first_guess+offset;
  520.     }
  521.     else if (check_before && patch_match(first_guess, -offset, fuzz)) {
  522. #ifdef DEBUGGING
  523.         if (debug & 1)
  524.         say3("Offset changing from %ld to %ld\n", last_offset, -offset);
  525. #endif
  526.         last_offset = -offset;
  527.         return first_guess-offset;
  528.     }
  529.     else if (!check_before && !check_after)
  530.         return Nulline;
  531.     }
  532. }
  533.  
  534. /* We did not find the pattern, dump out the hunk so they can handle it. */
  535.  
  536. void
  537. abort_hunk()
  538. {
  539.     Reg1 LINENUM i;
  540.     Reg2 LINENUM pat_end = pch_end();
  541.     /* add in last_offset to guess the same as the previous successful hunk */
  542.     LINENUM oldfirst = pch_first() + last_offset;
  543.     LINENUM newfirst = pch_newfirst() + last_offset;
  544.     LINENUM oldlast = oldfirst + pch_ptrn_lines() - 1;
  545.     LINENUM newlast = newfirst + pch_repl_lines() - 1;
  546.     char *stars = (diff_type == NEW_CONTEXT_DIFF ? " ****" : "");
  547.     char *minuses = (diff_type == NEW_CONTEXT_DIFF ? " ----" : " -----");
  548.  
  549.     fprintf(rejfp, "***************\n");
  550.     for (i=0; i<=pat_end; i++) {
  551.     switch (pch_char(i)) {
  552.     case '*':
  553.         if (oldlast < oldfirst)
  554.         fprintf(rejfp, "*** 0%s\n", stars);
  555.         else if (oldlast == oldfirst)
  556.         fprintf(rejfp, "*** %ld%s\n", oldfirst, stars);
  557.         else
  558.         fprintf(rejfp, "*** %ld,%ld%s\n", oldfirst, oldlast, stars);
  559.         break;
  560.     case '=':
  561.         if (newlast < newfirst)
  562.         fprintf(rejfp, "--- 0%s\n", minuses);
  563.         else if (newlast == newfirst)
  564.         fprintf(rejfp, "--- %ld%s\n", newfirst, minuses);
  565.         else
  566.         fprintf(rejfp, "--- %ld,%ld%s\n", newfirst, newlast, minuses);
  567.         break;
  568.     case '\n':
  569.         fprintf(rejfp, "%s", pfetch(i));
  570.         break;
  571.     case ' ': case '-': case '+': case '!':
  572.         fprintf(rejfp, "%c %s", pch_char(i), pfetch(i));
  573.         break;
  574.     default:
  575.         say1("Fatal internal error in abort_hunk().\n"); 
  576.         abort();
  577.     }
  578.     }
  579. }
  580.  
  581. /* We found where to apply it (we hope), so do it. */
  582.  
  583. void
  584. apply_hunk(where)
  585. LINENUM where;
  586. {
  587.     Reg1 LINENUM old = 1;
  588.     Reg2 LINENUM lastline = pch_ptrn_lines();
  589.     Reg3 LINENUM new = lastline+1;
  590. #define OUTSIDE 0
  591. #define IN_IFNDEF 1
  592. #define IN_IFDEF 2
  593. #define IN_ELSE 3
  594.     Reg4 int def_state = OUTSIDE;
  595.     Reg5 bool R_do_defines = do_defines;
  596.     Reg6 LINENUM pat_end = pch_end();
  597.  
  598.     where--;
  599.     while (pch_char(new) == '=' || pch_char(new) == '\n')
  600.     new++;
  601.     
  602.     while (old <= lastline) {
  603.     if (pch_char(old) == '-') {
  604.         copy_till(where + old - 1);
  605.         if (R_do_defines) {
  606.         if (def_state == OUTSIDE) {
  607.             fputs(not_defined, ofp);
  608.             def_state = IN_IFNDEF;
  609.         }
  610.         else if (def_state == IN_IFDEF) {
  611.             fputs(else_defined, ofp);
  612.             def_state = IN_ELSE;
  613.         }
  614.         fputs(pfetch(old), ofp);
  615.         }
  616.         last_frozen_line++;
  617.         old++;
  618.     }
  619.     else if (new > pat_end)
  620.         break;
  621.     else if (pch_char(new) == '+') {
  622.         copy_till(where + old - 1);
  623.         if (R_do_defines) {
  624.         if (def_state == IN_IFNDEF) {
  625.             fputs(else_defined, ofp);
  626.             def_state = IN_ELSE;
  627.         }
  628.         else if (def_state == OUTSIDE) {
  629.             fputs(if_defined, ofp);
  630.             def_state = IN_IFDEF;
  631.         }
  632.         }
  633.         fputs(pfetch(new), ofp);
  634.         new++;
  635.     }
  636.     else {
  637.         if (pch_char(new) != pch_char(old)) {
  638.         say3("Out-of-sync patch, lines %ld,%ld--mangled text or line numbers, maybe?\n",
  639.             pch_hunk_beg() + old,
  640.             pch_hunk_beg() + new);
  641. #ifdef DEBUGGING
  642.         say3("oldchar = '%c', newchar = '%c'\n",
  643.             pch_char(old), pch_char(new));
  644. #endif
  645.         my_exit(1);
  646.         }
  647.         if (pch_char(new) == '!') {
  648.         copy_till(where + old - 1);
  649.         if (R_do_defines) {
  650.            fputs(not_defined, ofp);
  651.            def_state = IN_IFNDEF;
  652.         }
  653.         while (pch_char(old) == '!') {
  654.             if (R_do_defines) {
  655.             fputs(pfetch(old), ofp);
  656.             }
  657.             last_frozen_line++;
  658.             old++;
  659.         }
  660.         if (R_do_defines) {
  661.             fputs(else_defined, ofp);
  662.             def_state = IN_ELSE;
  663.         }
  664.         while (pch_char(new) == '!') {
  665.             fputs(pfetch(new), ofp);
  666.             new++;
  667.         }
  668.         if (R_do_defines) {
  669.             fputs(end_defined, ofp);
  670.             def_state = OUTSIDE;
  671.         }
  672.         }
  673.         else {
  674.         assert(pch_char(new) == ' ');
  675.         old++;
  676.         new++;
  677.         }
  678.     }
  679.     }
  680.     if (new <= pat_end && pch_char(new) == '+') {
  681.     copy_till(where + old - 1);
  682.     if (R_do_defines) {
  683.         if (def_state == OUTSIDE) {
  684.             fputs(if_defined, ofp);
  685.         def_state = IN_IFDEF;
  686.         }
  687.         else if (def_state == IN_IFNDEF) {
  688.         fputs(else_defined, ofp);
  689.         def_state = IN_ELSE;
  690.         }
  691.     }
  692.     while (new <= pat_end && pch_char(new) == '+') {
  693.         fputs(pfetch(new), ofp);
  694.         new++;
  695.     }
  696.     }
  697.     if (R_do_defines && def_state != OUTSIDE) {
  698.     fputs(end_defined, ofp);
  699.     }
  700. }
  701.  
  702. /* Open the new file. */
  703.  
  704. void
  705. init_output(name)
  706. char *name;
  707. {
  708.     ofp = fopen(name, "w");
  709.     if (ofp == Nullfp)
  710.     fatal2("patch: can't create %s.\n", name);
  711. }
  712.  
  713. /* Open a file to put hunks we can't locate. */
  714.  
  715. void
  716. init_reject(name)
  717. char *name;
  718. {
  719.     rejfp = fopen(name, "w");
  720.     if (rejfp == Nullfp)
  721.     fatal2("patch: can't create %s.\n", name);
  722. }
  723.  
  724. /* Copy input file to output, up to wherever hunk is to be applied. */
  725.  
  726. void
  727. copy_till(lastline)
  728. Reg1 LINENUM lastline;
  729. {
  730.     Reg2 LINENUM R_last_frozen_line = last_frozen_line;
  731.  
  732.     if (R_last_frozen_line > lastline)
  733.     say1("patch: misordered hunks! output will be garbled.\n");
  734.     while (R_last_frozen_line < lastline) {
  735.     dump_line(++R_last_frozen_line);
  736.     }
  737.     last_frozen_line = R_last_frozen_line;
  738. }
  739.  
  740. /* Finish copying the input file to the output file. */
  741.  
  742. void
  743. spew_output()
  744. {
  745. #ifdef DEBUGGING
  746.     if (debug & 256)
  747.     say3("il=%ld lfl=%ld\n",input_lines,last_frozen_line);
  748. #endif
  749.     if (input_lines)
  750.     copy_till(input_lines);        /* dump remainder of file */
  751.     Fclose(ofp);
  752.     ofp = Nullfp;
  753. }
  754.  
  755. /* Copy one line from input to output. */
  756.  
  757. void
  758. dump_line(line)
  759. LINENUM line;
  760. {
  761.     Reg1 char *s;
  762.     Reg2 char R_newline = '\n';
  763.  
  764.     /* Note: string is not null terminated. */
  765.     for (s=ifetch(line, 0); putc(*s, ofp) != R_newline; s++) ;
  766. }
  767.  
  768. /* Does the patch pattern match at line base+offset? */
  769.  
  770. bool
  771. patch_match(base, offset, fuzz)
  772. LINENUM base;
  773. LINENUM offset;
  774. LINENUM fuzz;
  775. {
  776.     Reg1 LINENUM pline = 1 + fuzz;
  777.     Reg2 LINENUM iline;
  778.     Reg3 LINENUM pat_lines = pch_ptrn_lines() - fuzz;
  779.  
  780.     for (iline=base+offset+fuzz; pline <= pat_lines; pline++,iline++) {
  781.     if (canonicalize) {
  782.         if (!similar(ifetch(iline, (offset >= 0)),
  783.              pfetch(pline),
  784.              pch_line_len(pline) ))
  785.         return FALSE;
  786.     }
  787.     else if (strnNE(ifetch(iline, (offset >= 0)),
  788.            pfetch(pline),
  789.            pch_line_len(pline) ))
  790.         return FALSE;
  791.     }
  792.     return TRUE;
  793. }
  794.  
  795. /* Do two lines match with canonicalized white space? */
  796.  
  797. bool
  798. similar(a,b,len)
  799. Reg1 char *a;
  800. Reg2 char *b;
  801. Reg3 int len;
  802. {
  803.     while (len) {
  804.     if (isspace(*b)) {        /* whitespace (or \n) to match? */
  805.         if (!isspace(*a))        /* no corresponding whitespace? */
  806.         return FALSE;
  807.         while (len && isspace(*b) && *b != '\n')
  808.         b++,len--;        /* skip pattern whitespace */
  809.         while (isspace(*a) && *a != '\n')
  810.         a++;            /* skip target whitespace */
  811.         if (*a == '\n' || *b == '\n')
  812.         return (*a == *b);    /* should end in sync */
  813.     }
  814.     else if (*a++ != *b++)        /* match non-whitespace chars */
  815.         return FALSE;
  816.     else
  817.         len--;            /* probably not necessary */
  818.     }
  819.     return TRUE;            /* actually, this is not reached */
  820.                     /* since there is always a \n */
  821. }
  822.  
  823. /* Exit with cleanup. */
  824.  
  825. void
  826. my_exit(status)
  827. int status;
  828. {
  829.     Unlink(TMPINNAME);
  830.     if (!toutkeep) {
  831.     Unlink(TMPOUTNAME);
  832.     }
  833.     if (!trejkeep) {
  834.     Unlink(TMPREJNAME);
  835.     }
  836.     Unlink(TMPPATNAME);
  837.     exit(status);
  838. }
  839.